home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 5
/
Amiga Tools 5.iso
/
tools
/
usefull
/
blocnotes
/
archivenote.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1996-04-12
|
259 b
|
16 lines
/* Hides notes and makes it not autoopen*/
address 'blocnotes.rexx'
options results
/*Get the id of the note*/
parse arg id .
ISANOTE id
if result then do /* Check if the id is valid*/
HIDE id
AUTOOPEN id OFF
FIXEDSCREEN id OFF
SAVE id
end